formsy-react
A form input builder and validator for React JS
I wrote an article on forms and validation with React JS, Nailing that validation with React JS, the result of that was this extension.
The main concept is that forms, inputs and validation is done very differently across developers and projects. This extension to React JS aims to be that "sweet spot" between flexibility and reusability.
What you can do
-
Build any kind of form element components. Not just traditional inputs, but anything you want and get that validation for free
-
Add validation rules and use them with simple syntax
-
Use handlers for different states of your form. Ex. "onSubmit", "onError", "onValid" etc.
-
Pass external errors to the form to invalidate elements
-
You can dynamically add form elements to your form and they will register/unregister to the form
Default elements
You can look at examples in this repo or use the formsy-react-components project to use bootstrap with formsy-react, or use formsy-material-ui to use Material-UI with formsy-react.
Install
- Download from this REPO and use globally (Formsy) or with requirejs
- Install with
npm install formsy-react
and use with browserify etc. - Install with
bower install formsy-react
Changes
Check out releases
Older changes
How to use
See examples
folder for examples. Codepen demo.
Complete API reference is available here.
Formsy gives you a form straight out of the box
import Formsy from 'formsy-react';
const MyAppForm = React.createClass({
getInitialState() {
return {
canSubmit: false
}
},
enableButton() {
this.setState({
canSubmit: true
});
},
disableButton() {
this.setState({
canSubmit: false
});
},
submit(model) {
someDep.saveEmail(model.email);
},
render() {
return (
<Formsy.Form onValidSubmit={this.submit} onValid={this.enableButton} onInvalid={this.disableButton}>
<MyOwnInput name="email" validations="isEmail" validationError="This is not a valid email" required/>
<button type="submit" disabled={!this.state.canSubmit}>Submit</button>
</Formsy.Form>
);
}
});
This code results in a form with a submit button that will run the submit
method when the submit button is clicked with a valid email. The submit button is disabled as long as the input is empty (required) or the value is not an email (isEmail). On validation error it will show the message: "This is not a valid email".
Building a form element (required)
import Formsy from 'formsy-react';
const MyOwnInput = React.createClass({
mixins: [Formsy.Mixin],
changeValue(event) {
this.setValue(event.currentTarget.value);
},
render() {
const className = this.showRequired() ? 'required' : this.showError() ? 'error' : null;
const errorMessage = this.getErrorMessage();
return (
<div className={className}>
<input type="text" onChange={this.changeValue} value={this.getValue()}/>
<span>{errorMessage}</span>
</div>
);
}
});
The form element component is what gives the form validation functionality to whatever you want to put inside this wrapper. You do not have to use traditional inputs, it can be anything you want and the value of the form element can also be anything you want. As you can see it is very flexible, you just have a small API to help you identify the state of the component and set its value.
Related projects
Contribute
- Fork repo
npm install
npm run examples
runs the development server on localhost:8080
npm test
runs the tests
License
MIT